home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1998 / MacHack 1998.toast / Papers / OS Shell in Java / Facade / TimerEventListener.java < prev    next >
Encoding:
Java Source  |  1998-06-18  |  411 b   |  15 lines  |  [TEXT/dosa]

  1. //    TimerEventListener.java : this is a Java source code file for the program Facade.
  2. //    Copyright 1998, Andrew S. Downs
  3. //    andrew.downs@tulane.edu
  4. //
  5. //    This source code is distributed as freeware.
  6. //    Just keep this author information in the file.  Enjoy!
  7.  
  8. import java.io.*;
  9. import java.util.*;
  10.  
  11. public interface TimerEventListener extends EventListener {
  12.     public void timerExpired( TimerEvent evt );
  13. }
  14.  
  15.